home *** CD-ROM | disk | FTP | other *** search
- /*****************************************************
- ; Filename : ellipse.h
- ;
- ; Date : 3-7-94
- ; Mod. Date : 29-7-94
- ;
- ; Info : Obtained from Ferraro
- ;****************************************************/
- #ifndef ELLIPSE_H
- #define ELLIPSE_H
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- //Tim Kientzle's ellipse code
- void mtEllipse(int x,int y,int a,int b,int color);
- void mtFillEllipse(int x,int y,int a,int b,int color);
-
- void mtCEllipse(int x,int y,int a,int b,int color);
- void mtCFillEllipse(int x,int y,int a,int b,int color);
-
- //Richard Wilton's Alternatives
- void mtEllipseRW(int x,int y, int a, int b,int color);
- void mtFillEllipseRW(int x,int y, int a, int b, int color);
-
- void mtCEllipseRW(int x,int y, int a, int b,int color);
- void mtCFillEllipseRW(int x,int y, int a, int b, int color);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif ELLIPSE_H